home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Developer CD 2.1
/
Amiga Developer CD v2.1.iso
/
NDK
/
NDK_1.3
/
Include-Strip1.3
/
include.h
/
devices
/
bootblock.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-07-15
|
344 b
|
14 lines
#ifndef DEVICES_BOOTBLOCK_H
#define DEVICES_BOOTBLOCK_H
struct BootBlock {
UBYTE bb_id[4];
LONG bb_chksum;
LONG bb_dosblock;
};
#define BOOTSECTS 2
#define BBID_DOS { 'D', 'O', 'S', '\0' }
#define BBID_KICK { 'K', 'I', 'C', 'K' }
#define BBNAME_DOS (('D'<<24)|('O'<<16)|('S'<<8))
#define BBNAME_KICK (('K'<<24)|('I'<<16)|('C'<<8)|('K'))
#endif